home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / c / llist1_1.lha / linked_list / linked_list.readme < prev    next >
Encoding:
Text File  |  1995-03-20  |  2.1 KB  |  62 lines

  1. LINKED LIST LIBRARY
  2. version 1.1
  3.  
  4. INTRODUCTION
  5.  
  6. This library contains several functions to manipulate three basic
  7. types of linked lists; single, double, and circular.
  8.  
  9. In the header file for this library, there are predefined linked
  10. list structures for each type.
  11.  
  12. This code was built with SAS C compiler version 6.3 on an Amiga 3000. 
  13. When testing this library, both the library and test code were 
  14. compiled and linked with the Memlib tool included with the SAS compiler 
  15. to ensure no memory leaks.  That's not to say any code developed with
  16. this library included won't have any leaks, I'm just saying the
  17. library itself has no leaks.
  18.  
  19. Within the full documentation I have included some of the code I
  20. used to test the library with.  It shows some of the areas where
  21. memory leaks could develop if one is not careful.
  22.  
  23. SOFTWARE RELEASE
  24.  
  25. The following files are in the full release for version 1.1
  26.  
  27. ./linked_list
  28. ./linked_list.info
  29. ./linked_list/linked_list.readme      ....This file
  30. ./linked_list/linklist.fw             ....Docs in Final Writter 3 format
  31. ./linked_list/linklist.fw.info
  32. ./linked_list/linklist.guide          ....Docs in Amiga Guide format
  33. ./linked_list/linklist.guide.info
  34. ./linked_list/linklist.h              ....C header file for the library
  35. ./linked_list/linklist.lib            ....The library
  36. ./linked_list/linklist.PS             ....Docs in Postscript format
  37. ./linked_list/linklist.PS.info
  38.  
  39. INSTALLATION
  40.  
  41. Installation is quite easy.  Copy 'linklist.h' to a directory
  42. where the compiler can find it (ie SC:include/).  Copy 'linklist.lib'
  43. to a directory where the linker can find it (ie SC:lib).  Copy the
  44. documentation files to wherever you keep your doc files.
  45.  
  46. Done.  Enjoy........
  47.  
  48. LEGAL STUFF
  49.  
  50. Permission is granted to use this library to develop and release code
  51. public and commercial.  Permission is NOT granted to dissasemble,
  52. modify and re-release the code or documentation.
  53.  
  54. SAS/C® Copyright ©1992 by SAS Institute Inc., Cary, NC, USA
  55. Memlib was written and copyrighted © 1988-1992 by Doug Walker
  56.  
  57. DISCLAIMER
  58.  
  59. This software is provided as is.  I claim no responsibility for any
  60. damages that may occur from the use of this product.  Use this
  61. software at your own risk.
  62.